Current Location: Home> Function Categories> bindec

bindec

Convert binary to decimal
Name:bindec
Category:math
Programming Language:php
One-line Description:Convert binary to decimal.

Definition and usage

bindec() function converts binary to decimal.

Example

 <?php
echo bindec ( "0011" ) ;
echo bindec ( "01" ) ;
echo bindec ( "11000110011" ) ;
echo bindec ( "111" ) ;
?>

Try it yourself

Similar Functions
Popular Articles